home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Demos / TrueBASIC Demo / User's Guide / Liss < prev    next >
Encoding:
Text File  |  1985-10-19  |  385 b   |  18 lines  |  [TEXT/TRUE]

  1. ! Lissajous experiment
  2. !
  3. SET WINDOW -1, 1, -1, 1
  4. DO
  5.     PRINT "X multiplier, Y multiplier";
  6.     INPUT xmult, ymult
  7.     CLEAR
  8.  
  9.     FOR i = 0 to 2*pi STEP pi/100    ! Draw the figure
  10.         PLOT sin(xmult*i), cos(ymult*i);
  11.     NEXT i
  12.  
  13.     PLOT                   ! Turn off the beam
  14.     PAUSE 3                ! Wait 3 seconds
  15.     CLEAR                  ! Then clear the screen
  16. LOOP
  17. END
  18.